home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue38
/
BuildPro
/
BUILD
/
OutputBuild.bat
< prev
Wrap
DOS Batch File
|
1998-04-22
|
499b
|
22 lines
@ECHO OFF
REM OutputBuild.bat
REM This compiles the product using default compiler options and places the executables in a named directory.
REM Build the first project.
CD "..\My Project 1"
DCC32 /Q /E..\BuildOutput MyProject1.dpr
IF ERRORLEVEL 1 GOTO FAILED
REM Now build the second project.
CD "..\My Project 2"
DCC32 /Q /E..\BuildOutput MyProject2.dpr
IF ERRORLEVEL 1 GOTO FAILED
ECHO My Product built OK
GOTO END
:FAILED
ECHO My Product failed to build
:END
CD ..\Build